home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / DBCONSTS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-04  |  5.2 KB  |  109 lines

  1. unit DbConsts;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SInvalidFieldSize = 'Invalid field size';
  7.   SInvalidFieldRegistration = 'Invalid field registration';
  8.   SUnknownFieldType = 'Field ''%s'' is of an unknown type';
  9.   SFieldNameMissing = 'Field name missing';
  10.   SDuplicateFieldName = 'Duplicate field name ''%s''';
  11.   SFieldNotFound = '%s: Field ''%s'' not found';
  12.   SFieldAccessError = 'Cannot access field ''%s'' as type %s';
  13.   SFieldValueError = 'Invalid value for field ''%s''';
  14.   SFieldRangeError = '%g is not a valid value for field ''%s''. The allowed range is %g to %g';
  15.   SInvalidIntegerValue = '''%s'' is not a valid integer value for field ''%s''';
  16.   SInvalidBoolValue = '''%s'' is not a valid boolean value for field ''%s''';
  17.   SInvalidFloatValue = '''%s'' is not a valid floating point value for field ''%s''';
  18.   SFieldTypeMismatch = 'Field ''%s'' is not of the expected type';
  19.   SInvalidVarByteArray = 'Invalid variant type or size';
  20.   SFieldOutOfRange = 'Value of field ''%s'' is out of range';
  21.   SBCDOverflow = '(Overflow)';
  22.   SFieldRequired = 'Field ''%s'' must have a value';
  23.   SDataSetMissing = 'Field ''%s'' has no dataset';
  24.   SInvalidCalcType = 'Field ''%s'' cannot be a calculated or lookup field';
  25.   SFieldReadOnly = 'Field ''%s'' cannot be modified';
  26.   SFieldIndexError = 'Field index out of range';
  27.   SNoFieldIndexes = 'No index currently active';
  28.   SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
  29.   SIndexFieldMissing = 'Cannot access index field ''%s''';
  30.   SDuplicateIndexName = 'Duplicate index name ''%s''';
  31.   SNoIndexForFields = '''%s'' has no index for fields ''%s''';
  32.   SCircularDataLink = 'Circular datalinks are not allowed';
  33.   SLookupInfoError = 'Lookup information for field ''%s'' is incomplete';
  34.   SDataSourceChange = 'DataSource cannot be changed';
  35.   SDataSetOpen = 'Cannot perform this operation on an open dataset';
  36.   SNotEditing = 'Dataset not in edit or insert mode';
  37.   SDataSetClosed = 'Cannot perform this operation on a closed dataset';
  38.   SDataSetEmpty = 'Cannot perform this operation on an empty dataset';
  39.   SDataSetReadOnly = 'Cannot modify a read-only dataset';
  40.   SAutoSessionExclusive = 'Cannot enable AutoSessionName property with more than one session on a form or data-module';
  41.   SAutoSessionExists = 'Cannot add a session to the form or data-module while session ''%s'' has AutoSessionName enabled';
  42.   SAutoSessionActive = 'Cannot modify SessionName while AutoSessionName is enabled';
  43.   SExprTermination = 'Filter expression incorrectly terminated';
  44.   SExprNameError = 'Unterminated field name';
  45.   SExprStringError = 'Unterminated string constant';
  46.   SExprInvalidChar = 'Invalid filter expression character: ''%s''';
  47.   SExprNoRParen = ''')'' expected but %s found';
  48.   SExprExpected = 'Expression expected but %s found';
  49.   SExprBadField = 'Field ''%s'' cannot be used in a filter expression';
  50.   SExprBadNullTest = 'NULL only allowed with ''='' and ''<>''';
  51.   SExprRangeError = 'Constant out of range';
  52.   SExprNotBoolean = 'Field ''%s'' is not of type Boolean';
  53.   SExprIncorrect = 'Incorrectly formed filter expression';
  54.   SExprNothing = 'nothing';
  55.   STextFalse = 'False';
  56.   STextTrue = 'True';
  57.  
  58.   { DBClient }
  59.   SNoDataProvider = 'Missing data provider or data packet';
  60.   SInvalidDataPacket = 'Invalid data packet';
  61.   SRefreshError = 'Must apply updates before refreshing data';
  62.   SExportProvider = 'Export %s from data module';
  63.   SProviderInvalid = 'Invalid provider. Provider was freed by the application server';
  64.   SClientDSAssignData = 'Assign Local &Data...';
  65.   SLoadFromFile = '&Load from file...';
  66.   SSaveToFile = 'Save to f&ile...';
  67.   SClientDSClearData = '&Clear Data';
  68.   SClientDataSetEditor = '%s.%s Data';
  69.   SClientDataFilter = 'Client DataSet (*.cds)|*.cds|All Files (*.*)|*.*';
  70.   SInvalidProviderName = 'Provider name was not recognized by the server';
  71.   SServerNameBlank = 'Cannot connect, %s must contain a valid ServerName or ServerGUID';
  72.  
  73.   { DBCtrls }
  74.   SFirstRecord = 'First record';
  75.   SPriorRecord = 'Prior record';
  76.   SNextRecord = 'Next record';
  77.   SLastRecord = 'Last record';
  78.   SInsertRecord = 'Insert record';
  79.   SDeleteRecord = 'Delete record';
  80.   SEditRecord = 'Edit record';
  81.   SPostEdit = 'Post edit';
  82.   SCancelEdit = 'Cancel edit';
  83.   SRefreshRecord = 'Refresh data';
  84.   SDeleteRecordQuestion = 'Delete record?';
  85.   SDeleteMultipleRecordsQuestion = 'Delete all selected records?';
  86.   SRecordNotFound = 'Record not found';
  87.   SDataSourceFixed = 'Operation not allowed in a DBCtrlGrid';
  88.   SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
  89.   SPropDefByLookup = 'Property already defined by lookup field';
  90.   STooManyColumns = 'Grid requested to display more than 256 columns';
  91.  
  92.   { MIDASCon }
  93.   SSocketReadError = 'Error reading from socket';
  94.   SSocketWriteError = 'Error writing to socket';
  95.   SBadVariantType = 'Unsupported variant type: %s';
  96.   SInvalidAction = 'Invalid action received';
  97.   SConnectionLost = 'Connection lost';
  98.   SComputerNameRequired = 'ComputerName is required';
  99.  
  100.   { ScktSrvr }
  101.   SErrChangePort = 'Cannot change the port when there are active connections';
  102.   SErrClose = 'Cannot exit when there are active connections';
  103.   SButtonApply = 'Apply';
  104.   SButtonExit = 'Exit';
  105.  
  106. implementation
  107.  
  108. end.
  109.